home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / update_crc32.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  173 b   |  9 lines

  1. extern __far unsigned long crctab32[];
  2.  
  3. long update_crc32(int cp, long crc)
  4. {
  5.     return((long)
  6.         (crctab32[((int)crc ^ (0xFF & cp)) & 0xFF] ^ ((crc >> 8) & 0x00FFFFFFL)));
  7. }
  8.  
  9.